home *** CD-ROM | disk | FTP | other *** search
- ;
- ;$VER: 1.1 Lyrics v2.3 => 2.4 Updater (C) 1998 by Sh0cker.
- (set space_needed 1200)
- (set #wrongOS "You need at least OS3.0")
- (set #wrongCPU "You need at least a 68020 CPU")
- (welcome "Welcome to the Lyrics v2.3 => 2.4 Updater v1.0")
- (set @app-name "LyricsUpdate")
- (set #DESTDIR "SYS:")
-
- ;**** Checking environment
- (set OS_ver (getversion "exec.library" (resident)))
- (if (< OS_ver (* 39 65536)) (abort #wrongOS))
- (set cpu_type (database "cpu"))
- (if (< cpu_type "68020") (abort #wrongCPU))
-
- (message "\n\nWelcome to the Lyrics v2.3 => 2.4 Updater\n"
- "(c) 1998 Sh0cker.\n\n"
- "This program updates the Lyrics v2.3 installed on your AMiGA. It takes 1 more Mo on your harddisk\n\n"
- )
-
- (set #DESTDIR
- (askdir
- (prompt "Select the drawer where you've installed the Lyrics v2.3, (do not select in RAM:)\n"
- )
- (help @askdir-help)
- (default #DESTDIR)
- )
- )
- (set @default-dest #DESTDIR)
- (set freespace (getdiskspace #DESTDIR))
- (if (< freespace space_needed)
- (abort "Aborting... Not Enough DiSKSPACE SORRY! 1.2Mo needed!")
- )
-
- (complete 10)
-
- (makeassign "Lyrics" #DESTDIR)
-
- (complete 20)
-
- (delete "Lyrics:tabs/beautiful" "Lyrics:SONGS2/ZZTOP" "Lyrics:SONGS/bjorkdebut" "Lyrics:SONGS/homogenic" "Lyrics:SONGS/post" "Lyrics:SONGS/blackcrowes"
- (prompt "Deleting Obsolete Files!")
- (help "Deleting Obsolete Files!")
- (confirm)
- )
-
- (complete 30)
-
- (copylib
- (prompt "Updating xpkmaster.library v4.1x")
- (help @copyfiles-help)
- (source "libs/xpkmaster.library")
- (dest "Libs:")
- (noposition)
- (optional fail force)
- (confirm)
- )
-
- (complete 40)
-
- (copyfiles
- (prompt "Copying Xpack v1.5")
- (help @copyfiles-help)
- (source "Xpack")
- (dest "C:")
- (noposition)
- (optional fail force)
- (confirm)
- )
-
- (complete 50)
-
- (copyfiles
- (prompt "Copying Lyrics v2.3")
- (help @copyfiles-help)
- (source "Lyrics")
- (all)
- (dest #DESTDIR)
- (noposition)
- (optional fail force)
- (confirm)
- )
-
- (complete 60)
-
- (run "xpack Lyrics:songs all"
- (prompt "\n\nDo You Want To Decrunch The Songs Files 1? Warning Uncompressing XPK PPMQ Takes Some Minutes On 020 And You Need More Hd Space!\n\n")
- (help "This will only work from the CLI!")
- (confirm)
- )
-
- (complete 70)
-
- (run "xpack Lyrics:songs2 all"
- (prompt "\n\nDo You Want To Decrunch The Songs Files 2? Warning Uncompressing XPK PPMQ Takes Some Minutes On 020 And You Need More Hd Space!\n\n")
- (help "This will only work from the CLI!")
- (confirm)
- )
-
- (complete 80)
-
- (run "xpack Lyrics:Tabs all"
- (prompt "\n\nDo You Want To Decrunch The Tabs? Warning Uncompressing XPK PPMQ Takes Some Minutes On 020 And You Need More Hd Space!\n\n")
- (help "This will only work from the CLI!")
- (confirm)
- )
-
- (complete 100)
-
- (run "xpack Lyrics:Rap all"
- (prompt "\n\nDo You Want To Decrunch The Rap Files? Warning Uncompressing XPK PPMQ Takes Some Minutes On 020 And You Need More Hd Space!\n\n")
- (help "This will only work from the CLI!")
- (confirm)
- )
-